home *** CD-ROM | disk | FTP | other *** search
/ Dream Season 1996 - Flor…a's National Championship / Florida's National Championship on CD-ROM - Dream Season 1996.iso / mac / Dream Season '96 / Dream Season '96.DXR / 00002_DB scripts.ls < prev    next >
Encoding:
Text File  |  1997-03-19  |  15.2 KB  |  456 lines

  1. on MediaIconRollover
  2.   global gRecord, gPREVIEWSPRITE, gPREVIEWSPRITELAST, gPreviewNum, gMEDIAICONCAPTIONSPRITE, gVIDEOSPRITE, gGAMESSPRITE
  3.   set mousePosH to the mouseH
  4.   set mousePosV to the mouseV
  5.   set n to -1
  6.   repeat with i = gPREVIEWSPRITE to gPREVIEWSPRITELAST
  7.     if rollOver(i) then
  8.       if the visible of sprite i then
  9.         set n to i
  10.         exit repeat
  11.       end if
  12.     end if
  13.   end repeat
  14.   if n > 1 then
  15.     repeat with i = gVIDEOSPRITE to gGAMESSPRITE + 1
  16.       if rollOver(i) then
  17.         if the visible of sprite i then
  18.           set n to -1
  19.           exit repeat
  20.         end if
  21.       end if
  22.     end repeat
  23.   end if
  24.   if n > 1 then
  25.     set n to n - gPREVIEWSPRITE
  26.     set s to line n + 4 of gRecord
  27.     if the number of items in s > 1 then
  28.       delete item 1 of s
  29.       set the itemDelimiter to "~"
  30.       set s to item 1 of s
  31.       set the itemDelimiter to ","
  32.       if (the text of cast "MediaIconCaption" = s) and the visible of sprite gMEDIAICONCAPTIONSPRITE then
  33.         exit
  34.       end if
  35.       puppetSprite(gMEDIAICONCAPTIONSPRITE, 1)
  36.       set the text of cast "MediaIconCaption" to " "
  37.       set w to the width of sprite gMEDIAICONCAPTIONSPRITE
  38.       set the locV of sprite gMEDIAICONCAPTIONSPRITE to mousePosV
  39.       set the locH of sprite gMEDIAICONCAPTIONSPRITE to mousePosH - (w / 2)
  40.       set the visible of sprite gMEDIAICONCAPTIONSPRITE to 1
  41.       updateStage()
  42.       set the text of cast "MediaIconCaption" to s
  43.     else
  44.       if the visible of sprite gMEDIAICONCAPTIONSPRITE then
  45.         set the visible of sprite gMEDIAICONCAPTIONSPRITE to 0
  46.       end if
  47.     end if
  48.   else
  49.     if n = the number of cast "MediaIconCaption" then
  50.       exit
  51.     end if
  52.     if the visible of sprite gMEDIAICONCAPTIONSPRITE then
  53.       set the visible of sprite gMEDIAICONCAPTIONSPRITE to 0
  54.     end if
  55.   end if
  56. end
  57.  
  58. on LoadMedia n
  59.   global gTEXTSPRITE, gSTATSSPRITE, gROSTERSPRITE, gRECORDSSPRITE, gGAMESSPRITE, gPICTSPRITE, gVIDEOSPRITE, gAUDIOSPRITE, gRecord, gPREVIEWSPRITE, gLastMedia, gFutureRecordNum, gMEDIAICONCAPTIONSPRITE, gMEDIACAPTIONSPRITE
  60.   cursor(4)
  61.   if the visible of sprite (gVIDEOSPRITE + 1) then
  62.     set the movieRate of sprite (gVIDEOSPRITE + 1) to 0
  63.   end if
  64.   if the visible of sprite (gAUDIOSPRITE + 1) then
  65.     set the movieRate of sprite (gAUDIOSPRITE + 1) to 0
  66.   end if
  67.   set the visible of sprite gVIDEOSPRITE to 0
  68.   set the visible of sprite (gVIDEOSPRITE + 1) to 0
  69.   set the visible of sprite gPICTSPRITE to 0
  70.   set the visible of sprite (gPICTSPRITE + 1) to 0
  71.   set the visible of sprite gAUDIOSPRITE to 0
  72.   set the visible of sprite (gAUDIOSPRITE + 1) to 0
  73.   set the visible of sprite gTEXTSPRITE to 0
  74.   set the visible of sprite (gTEXTSPRITE + 1) to 0
  75.   set the visible of sprite gSTATSSPRITE to 0
  76.   set the visible of sprite (gSTATSSPRITE + 1) to 0
  77.   set the visible of sprite gROSTERSPRITE to 0
  78.   set the visible of sprite (gROSTERSPRITE + 1) to 0
  79.   set the visible of sprite gRECORDSSPRITE to 0
  80.   set the visible of sprite (gRECORDSSPRITE + 1) to 0
  81.   set the visible of sprite gGAMESSPRITE to 0
  82.   set the visible of sprite (gGAMESSPRITE + 1) to 0
  83.   set the visible of sprite gMEDIAICONCAPTIONSPRITE to 0
  84.   set the visible of sprite gMEDIACAPTIONSPRITE to 0
  85.   if gLastMedia > 0 then
  86.     set the visible of sprite (gPREVIEWSPRITE + gLastMedia - 1) to 1
  87.   end if
  88.   if n = 0 then
  89.     cursor(-1)
  90.     exit
  91.   end if
  92.   set s to line n + 3 of gRecord
  93.   set the itemDelimiter to ":"
  94.   set MediaType to item 1 of s
  95.   delete item 1 of s
  96.   set the itemDelimiter to ","
  97.   set i to n - 1
  98.   set MediaSprite to 0
  99.   if MediaType = "Text" then
  100.     set FileObj to FileIO(mnew, "read", MakePath(item 1 of s))
  101.     if objectp(FileObj) then
  102.       set data to FileObj(mReadFile)
  103.       FileObj(mdispose)
  104.       if data <> EMPTY then
  105.         set the text of cast "MediaText" to data
  106.         set MediaSprite to gTEXTSPRITE
  107.       end if
  108.     end if
  109.   else
  110.     if MediaType = "Stats" then
  111.       set FileObj to FileIO(mnew, "read", MakePath(item 1 of s))
  112.       if objectp(FileObj) then
  113.         set data to FileObj(mReadFile)
  114.         FileObj(mdispose)
  115.         if data <> EMPTY then
  116.           set the text of cast "MediaStats" to data
  117.           set OK to 1
  118.           repeat with i = 1 to the number of lines in data
  119.             if (i mod 5) = 1 then
  120.               if the number of chars in line i of data > 76 then
  121.                 set OK to 0
  122.                 exit repeat
  123.               end if
  124.             end if
  125.           end repeat
  126.           if OK then
  127.             set the textSize of field "MediaStats" to 10
  128.           else
  129.             set the textSize of field "MediaStats" to 9
  130.           end if
  131.           set MediaSprite to gSTATSSPRITE
  132.         end if
  133.       end if
  134.     else
  135.       if MediaType = "Roster" then
  136.         set FileObj to FileIO(mnew, "read", MakePath(item 1 of s))
  137.         if objectp(FileObj) then
  138.           set data to FileObj(mReadFile)
  139.           FileObj(mdispose)
  140.           if data <> EMPTY then
  141.             set the text of cast "MediaRoster" to data
  142.             set MediaSprite to gROSTERSPRITE
  143.           end if
  144.         end if
  145.       else
  146.         if (MediaType = "Records") or (MediaType = "Bowl") then
  147.           set FileObj to FileIO(mnew, "read", MakePath(item 1 of s))
  148.           if objectp(FileObj) then
  149.             set data to FileObj(mReadFile)
  150.             FileObj(mdispose)
  151.             if data <> EMPTY then
  152.               set the text of cast "MediaRecords" to data
  153.               set MediaSprite to gRECORDSSPRITE
  154.             end if
  155.           end if
  156.         else
  157.           if MediaType = "Games" then
  158.             set FileObj to FileIO(mnew, "read", MakePath(item 1 of s))
  159.             if objectp(FileObj) then
  160.               set data to FileObj(mReadFile)
  161.               FileObj(mdispose)
  162.               if data <> EMPTY then
  163.                 delete line 1 of data
  164.                 repeat with i = 1 to the number of lines in data
  165.                   set L to line i of data
  166.                   set the itemDelimiter to ":"
  167.                   set L to RPad(item 1 of L, 5) & " " & LPad(item 4 of L, 17) & RPad(word 1 of item 2 of L, 4) & RPad(item 3 of L, 17)
  168.                   set the itemDelimiter to ","
  169.                   put L into line i of data
  170.                 end repeat
  171.                 set the text of cast "MediaGames" to data
  172.                 set MediaSprite to gGAMESSPRITE
  173.               end if
  174.             end if
  175.           else
  176.             if MediaType = "Pict" then
  177.               set fName to MakePath(item 1 of s)
  178.               set the fileName of cast the number of cast "MediaPicture" to fName
  179.               if the fileName of cast the number of cast "MediaPicture" = fName then
  180.                 set MediaSprite to gPICTSPRITE
  181.                 puppetSprite(gPICTSPRITE + 1, 1)
  182.                 puppetSprite(gPICTSPRITE, 1)
  183.                 preLoadCast("MediaPicture")
  184.                 set w to the width of cast "MediaPicture" / 2
  185.                 set h to the height of cast "MediaPicture" / 2
  186.                 spriteBox(gPICTSPRITE + 1, 320 - w, 170 - h, 320 + w, 170 + h)
  187.                 updateStage()
  188.               end if
  189.             else
  190.               if MediaType = "Video" then
  191.                 set fName to MakePath(item 1 of s)
  192.                 if the fileName of cast the number of cast "MediaVideo" <> fName then
  193.                   set the fileName of cast the number of cast "MediaVideo" to fName
  194.                 end if
  195.                 if the fileName of cast the number of cast "MediaVideo" = fName then
  196.                   set MediaSprite to gVIDEOSPRITE
  197.                 end if
  198.               else
  199.                 if MediaType = "Audio" then
  200.                   set fName to MakePath(item 1 of s)
  201.                   if the fileName of cast the number of cast "MediaAudio" <> fName then
  202.                     set the fileName of cast the number of cast "MediaAudio" to fName
  203.                   end if
  204.                   if the fileName of cast the number of cast "MediaAudio" = fName then
  205.                     set MediaSprite to gAUDIOSPRITE
  206.                   end if
  207.                 else
  208.                   if MediaType = "LoadRecord" then
  209.                     delete item 1 of s
  210.                     set the itemDelimiter to "~"
  211.                     set s to item 2 of s
  212.                     set the itemDelimiter to ","
  213.                     set gFutureRecordNum to integer(s)
  214.                     go(marker(1))
  215.                   else
  216.                     if MediaType = "Goto" then
  217.                       delete item 1 of s
  218.                       set the itemDelimiter to "~"
  219.                       set s to item 2 of s
  220.                       set the itemDelimiter to ","
  221.                       go(item 1 of s)
  222.                     end if
  223.                   end if
  224.                 end if
  225.               end if
  226.             end if
  227.           end if
  228.         end if
  229.       end if
  230.     end if
  231.   end if
  232.   if MediaSprite > 0 then
  233.     set the visible of sprite (gPREVIEWSPRITE + n - 1) to 0
  234.     set the visible of sprite MediaSprite to 1
  235.     set the visible of sprite (MediaSprite + 1) to 1
  236.     updateStage()
  237.     if the number of items in s > 1 then
  238.       puppetSprite(gMEDIACAPTIONSPRITE, 1)
  239.       set the text of cast "MediaCaption" to " "
  240.       set i to 5
  241.       if MediaType = "Roster" then
  242.         set i to -100
  243.       else
  244.         if MediaType = "Pict" then
  245.           set i to 180 + h - 40
  246.         else
  247.           if MediaType = "Video" then
  248.             set i to the bottom of sprite MediaSprite - 1
  249.           else
  250.             if MediaType = "Audio" then
  251.               set i to the bottom of sprite MediaSprite - 20
  252.             else
  253.               if MediaType = "Stats" then
  254.                 set i to 50
  255.               end if
  256.             end if
  257.           end if
  258.         end if
  259.       end if
  260.       set the locV of sprite gMEDIACAPTIONSPRITE to i
  261.       set the visible of sprite gMEDIACAPTIONSPRITE to 1
  262.       updateStage()
  263.       set the text of cast "MediaCaption" to item 2 of s
  264.     end if
  265.     set gLastMedia to n
  266.     if (MediaType = "Video") or (MediaType = "Audio") then
  267.       set the movieTime of sprite (MediaSprite + 1) to 0
  268.       set the movieRate of sprite (MediaSprite + 1) to 1
  269.     end if
  270.   end if
  271.   cursor(-1)
  272. end
  273.  
  274. on HideMedia
  275.   global gTEXTSPRITE, gSTATSSPRITE, gROSTERSPRITE, gRECORDSSPRITE, gGAMESSPRITE, gPICTSPRITE, gVIDEOSPRITE, gAUDIOSPRITE, gMEDIACAPTIONSPRITE
  276.   set the visible of sprite gVIDEOSPRITE to 0
  277.   set the visible of sprite (gVIDEOSPRITE + 1) to 0
  278.   set the visible of sprite gPICTSPRITE to 0
  279.   set the visible of sprite (gPICTSPRITE + 1) to 0
  280.   set the visible of sprite gAUDIOSPRITE to 0
  281.   set the visible of sprite (gAUDIOSPRITE + 1) to 0
  282.   set the visible of sprite gTEXTSPRITE to 0
  283.   set the visible of sprite (gTEXTSPRITE + 1) to 0
  284.   set the visible of sprite gSTATSSPRITE to 0
  285.   set the visible of sprite (gSTATSSPRITE + 1) to 0
  286.   set the visible of sprite gROSTERSPRITE to 0
  287.   set the visible of sprite (gROSTERSPRITE + 1) to 0
  288.   set the visible of sprite gRECORDSSPRITE to 0
  289.   set the visible of sprite (gRECORDSSPRITE + 1) to 0
  290.   set the visible of sprite gGAMESSPRITE to 0
  291.   set the visible of sprite (gGAMESSPRITE + 1) to 0
  292.   set the visible of sprite gMEDIACAPTIONSPRITE to 0
  293. end
  294.  
  295. on LoadList path
  296.   global gList, gListIndex, gListPath
  297.   set gListPath to path
  298.   set fName to MakePath(path & "LIST.TXT")
  299.   set FileObj to FileIO(mnew, "read", fName)
  300.   if objectp(FileObj) then
  301.     set gList to FileObj(mReadFile)
  302.     FileObj(mdispose)
  303.   end if
  304.   set fName to MakePath(path & "LIST.NDX")
  305.   set FileObj to FileIO(mnew, "read", fName)
  306.   if objectp(FileObj) then
  307.     set gListIndex to FileObj(mReadFile)
  308.     FileObj(mdispose)
  309.   end if
  310. end
  311.  
  312. on LoadRecord n
  313.   global gList, gListIndex, gListPath, gRecord, gCurrentRecord, gPreviewNum, gLastMedia
  314.   set gCurrentRecord to n
  315.   set fName to string(line n of gListIndex)
  316.   repeat while the number of chars in fName < 3
  317.     set fName to "0" & fName
  318.   end repeat
  319.   set subDir to char 1 to 2 of fName
  320.   set fName to MakePath(gListPath & subDir & ":" & fName & ".TXT")
  321.   set FileObj to FileIO(mnew, "read", fName)
  322.   if objectp(FileObj) then
  323.     set gRecord to FileObj(mReadFile)
  324.     FileObj(mdispose)
  325.     set s to line 1 of gRecord
  326.     if s = EMPTY then
  327.       set s to " "
  328.     end if
  329.     set the text of cast "Caption1" to s
  330.     set s to line 2 of gRecord
  331.     if s = EMPTY then
  332.       set s to " "
  333.     end if
  334.     set the text of cast "Caption2" to s
  335.     set s to line 3 of gRecord
  336.     if s = EMPTY then
  337.       set s to " "
  338.     end if
  339.     set the text of cast "Caption3" to s
  340.   end if
  341.   set gPreviewNum to 0
  342.   set gLastMedia to 0
  343. end
  344.  
  345. on HideRecordPreviews
  346.   global gPREVIEWSPRITE, gPREVIEWSPRITELAST, gMEDIAICONCAPTIONSPRITE
  347.   repeat with i = gPREVIEWSPRITE to gPREVIEWSPRITELAST
  348.     set the visible of sprite i to 0
  349.   end repeat
  350.   set the visible of sprite gMEDIAICONCAPTIONSPRITE to 0
  351. end
  352.  
  353. on ShowRecordPreviews
  354.   global gPREVIEWSPRITE, gPREVIEWSPRITELAST, gMEDIAICONCAPTIONSPRITE
  355.   repeat with i = gPREVIEWSPRITE to gPREVIEWSPRITELAST
  356.     set the visible of sprite i to 1
  357.   end repeat
  358.   set the visible of sprite gMEDIAICONCAPTIONSPRITE to 1
  359. end
  360.  
  361. on LoadRecordPreviews
  362.   global gRecord, gLastMedia, gPREVIEWSPRITE, gPREVIEWSPRITELAST, gPreviewNum, gVIDEOSPRITE, gAUDIOSPRITE
  363.   if gPreviewNum > (the number of lines in gRecord - 4) then
  364.     return 0
  365.   end if
  366.   if gPreviewNum > (gPREVIEWSPRITELAST - gPREVIEWSPRITE) then
  367.     return 0
  368.   end if
  369.   set i to gPreviewNum
  370.   set n to the number of cast "Preview1"
  371.   set s to line i + 4 of gRecord
  372.   set the itemDelimiter to ":"
  373.   set MediaType to item 1 of s
  374.   delete item 1 of s
  375.   set the itemDelimiter to ","
  376.   if (MediaType = "Pict") or (MediaType = "Video") or (MediaType = "LoadRecord") or (MediaType = "Goto") then
  377.     set s to item 1 of s
  378.     set the itemDelimiter to "."
  379.     put "PRE" into item 2 of s
  380.     set the itemDelimiter to ","
  381.     set fName to MakePath(s)
  382.   else
  383.     if MediaType = "Text" then
  384.       set fName to MakePath("ICONS:TEXT:TEXT" & i mod 5 & ".PRE")
  385.     else
  386.       if MediaType = "Stats" then
  387.         set fName to MakePath("ICONS:STATS:STATS" & i mod 5 & ".PRE")
  388.       else
  389.         if MediaType = "Audio" then
  390.           set fName to MakePath("ICONS:AUDIO:AUDIO" & i mod 5 & ".PRE")
  391.         else
  392.           if MediaType = "Bowl" then
  393.             set fName to MakePath("ICONS:BOWL:BOWL" & i mod 5 & ".PRE")
  394.           else
  395.             if MediaType = "Records" then
  396.               set fName to MakePath("ICONS:RECORDS:RECORDS" & i mod 5 & ".PRE")
  397.             else
  398.               if MediaType = "Games" then
  399.                 set fName to MakePath("ICONS:GAMES:GAMES" & i mod 5 & ".PRE")
  400.               else
  401.                 if MediaType = "Roster" then
  402.                   set fName to MakePath("ICONS:ROSTER:ROSTER" & i mod 5 & ".PRE")
  403.                 end if
  404.               end if
  405.             end if
  406.           end if
  407.         end if
  408.       end if
  409.     end if
  410.   end if
  411.   set the fileName of cast (n + i) to fName
  412.   if (the fileName of cast (n + i) = fName) and ((i + 1) <> gLastMedia) then
  413.     set the visible of sprite (gPREVIEWSPRITE + i) to 1
  414.   end if
  415.   set gPreviewNum to gPreviewNum + 1
  416.   return 1
  417. end
  418.  
  419. on IsNextRecord
  420.   global gCurrentRecord, gList
  421.   if gCurrentRecord < the number of lines in gList then
  422.     return 1
  423.   else
  424.     return 0
  425.   end if
  426. end
  427.  
  428. on NextRecord
  429.   global gCurrentRecord
  430.   if IsNextRecord() then
  431.     LoadRecord(gCurrentRecord + 1)
  432.     return 1
  433.   else
  434.     return 0
  435.   end if
  436. end
  437.  
  438. on IsPrevRecord
  439.   global gCurrentRecord
  440.   if gCurrentRecord > 1 then
  441.     return 1
  442.   else
  443.     return 0
  444.   end if
  445. end
  446.  
  447. on PrevRecord
  448.   global gCurrentRecord
  449.   if IsPrevRecord() then
  450.     LoadRecord(gCurrentRecord - 1)
  451.     return 1
  452.   else
  453.     return 0
  454.   end if
  455. end
  456.